home *** CD-ROM | disk | FTP | other *** search
- from PSPApp import *
-
- def ScriptProperties():
- return {
- 'Author': u'',
- 'Copyright': u'',
- 'Description': u'',
- 'Host': u'Paint Shop Pro 10',
- 'Host Version': u'10.00 Alpha 20050608.10'
- }
-
- def Preset_Crop():
- return {
- 'CropRect': ((0,0), 800, 1200),
- 'Mode': App.Constants.CropMode.Custom,
- 'Units': App.Constants.CropUnits.Inches,
- 'SelectedArea': False,
- 'PrintWidth': -1,
- 'PrintHeight': -1
- }
-
- def Do(Environment):
- # Crop_LOCALIZED
- App.Do( Environment, 'Crop', Preset_Crop())
-
-